home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Atari Compendium
/
The Atari Compendium (Toad Computers) (1994).iso
/
files
/
prgtools
/
mint
/
shells
/
sh03src.zoo
/
sh-pl03
/
pwd
/
pwd.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1993-03-22
|
231 b
|
17 lines
#include <stddef.h>
#include <limits.h>
#include <unistd.h>
#include <string.h>
#include <osbind.h>
int main() {
char cwd[PATH_MAX+3];
getcwd(cwd, PATH_MAX);
strcat(cwd, "\n\r");
Cconws(cwd);
return 0;
}